Category: Zone BBS Suggestions and Feedback
ok you can currently check all your messages one at a time, how about a check all command, so that we can delete a bunch at once
this is a feature i've asked for in private mail too, i still believe it would be useful for both pages.
I think this has already been done. You can check the box next to messages on the voicemail page once you've listened to them and press the Delete Marked Messages button. Same with private mail.
NO I mean a button that checks them all for you so you can delete them all at once
i agree justin. good time saving idea!
I can think of a way that you could do that with JavaScript.
<script language="JavaScript" type="text/JavaScript">
<!--
var count;
let count=document.getElementByID("msg").count;
for (var i=0; i<= count; i++){
document.getElementByID("msg"+i).setAttribute("selected", true);
}
//-->
</script>